projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
426f6c2
)
(edmacro-subseq): Don't use cl-push/cl-pop.
author
Stefan Monnier
<monnier@iro.umontreal.ca>
Fri, 6 Sep 2002 19:46:24 +0000
(19:46 +0000)
committer
Stefan Monnier
<monnier@iro.umontreal.ca>
Fri, 6 Sep 2002 19:46:24 +0000
(19:46 +0000)
lisp/edmacro.el
patch
|
blob
|
history
diff --git
a/lisp/edmacro.el
b/lisp/edmacro.el
index dc538ab5f92e41f19932af9252eb926c2151c04e..9eac3a29055e74e59713891f7fa2d4e10620ff9c 100644
(file)
--- a/
lisp/edmacro.el
+++ b/
lisp/edmacro.el
@@
-595,7
+595,7
@@
If START or END is negative, it counts from the end."
(if end
(let ((res nil))
(while (>= (setq end (1- end)) start)
- (
cl-push (cl-
pop seq) res))
+ (
push (
pop seq) res))
(nreverse res))
(copy-sequence seq)))
(t